home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / gfx / conv / gfx2grob.lha / gfx2grob / src / Convert.h < prev    next >
C/C++ Source or Header  |  1994-11-20  |  199b  |  15 lines

  1. #ifndef CONVERT_H
  2. #define CONVERT_H
  3.  
  4.  
  5. #define GROBSTR "GROB"
  6.  
  7.  
  8. #define CALCWIDTH(W, M) (((W) % (M)) ? ((M) - ((W) % (M)) + (W)) : (W))
  9.  
  10.  
  11. extern void ConvertFile(gvType *gv);
  12.  
  13.  
  14. #endif /* CONVERT_H */
  15.